@dxos/react-ui-editor 0.8.2-main.2f9c567 → 0.8.2-main.5885341

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5366,19 +5366,19 @@ var mention = ({ debug, onSearch }) => {
5366
5366
  import { keymap as keymap9 } from "@codemirror/view";
5367
5367
  import { vim } from "@replit/codemirror-vim";
5368
5368
  import { vscodeKeymap } from "@replit/codemirror-vscode-keymap";
5369
- import { Schema } from "effect";
5369
+ import { S } from "@dxos/echo-schema";
5370
5370
  var EditorViewModes = [
5371
5371
  "preview",
5372
5372
  "readonly",
5373
5373
  "source"
5374
5374
  ];
5375
- var EditorViewMode = Schema.Union(...EditorViewModes.map((mode) => Schema.Literal(mode)));
5375
+ var EditorViewMode = S.Union(...EditorViewModes.map((mode) => S.Literal(mode)));
5376
5376
  var EditorInputModes = [
5377
5377
  "default",
5378
5378
  "vim",
5379
5379
  "vscode"
5380
5380
  ];
5381
- var EditorInputMode = Schema.Union(...EditorInputModes.map((mode) => Schema.Literal(mode)));
5381
+ var EditorInputMode = S.Union(...EditorInputModes.map((mode) => S.Literal(mode)));
5382
5382
  var editorInputMode = singleValueFacet({});
5383
5383
  var InputModeExtensions = {
5384
5384
  default: [],